RequestWillBeSentExtraInfoEvent

data class RequestWillBeSentExtraInfoEvent(requestId: RequestId, associatedCookies: List<BlockedCookieWithReason>, headers: Headers, clientSecurityState: ClientSecurityState?) : Event

Fired when additional information about a requestWillBeSent event is available from the network stack. Not every requestWillBeSent event will have an additional requestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent or requestWillBeSentExtraInfo will be fired first for the same request.

Constructors

RequestWillBeSentExtraInfoEvent
Link copied to clipboard
fun RequestWillBeSentExtraInfoEvent(requestId: RequestId, associatedCookies: List<BlockedCookieWithReason>, headers: Headers, clientSecurityState: ClientSecurityState? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

associatedCookies
Link copied to clipboard
val associatedCookies: List<BlockedCookieWithReason>
A list of cookies potentially associated to the requested URL.
clientSecurityState
Link copied to clipboard
val clientSecurityState: ClientSecurityState? = null
The client security state set for the request.
headers
Link copied to clipboard
val headers: Headers
Raw request headers as they will be sent over the wire.
requestId
Link copied to clipboard
val requestId: RequestId
Request identifier.

Sources

jvm source
Link copied to clipboard